- <template>
- <SearchNews v-if="type == 1"></SearchNews>
- <SearchJobHunting v-if="type == 5"></SearchJobHunting>
- <SearchJobRecruit v-if="type == 4"></SearchJobRecruit>
- </template>
- <script setup>
- import { ref } from 'vue'
- import { useRoute } from 'vue-router'
- const route = useRoute();
- let type = route.query.type
- let keyword = route.query.keyword
- </script>
|